www.gusucode.com > wxApp PHP版微信小程序CMS系统 v1.0PHP源码程序 > wxApp PHP版微信小程序CMS系统 v1.0/wxAppCMS_v1.0.0/wxAppCMS_v1.0.0/iPHP/core/template/plugins/modifier.print_r.php

    <?php
/**
 * template_lite strip modifier plugin
 *
 * Type:     modifier
 * Name:     print_r
 * Purpose:  Removes all repeated spaces, newlines, tabs
 *           with a single space or supplied character
 * Credit:   Taken from the original Smarty
 *           http://smarty.php.net
 */
function tpl_modifier_print_r($vars){
	echo '<pre>';
	print_r($vars);
	echo '</pre>';
}